Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
metal-promise
Advanced tools
/*!
* Promises polyfill from Google's Closure Library in ES6.
*
* Copyright 2013 The Closure Library Authors. All Rights Reserved.
*
* Promise support is not ready on all supported browsers,
* therefore core.js is temporarily using Google's promises as polyfill. It
* supports cancellable promises and has clean and fast implementation.
*/
import CancellablePromise from 'metal-promise';
new CancellablePromise(function(resolve, reject) {
asyncFunction(function(err) {
if (err) {
reject(err);
}
else {
resolve();
}
});
})
.then(function() {
// Invoked once resolved
})
.catch(function(err) {
// Invoked once rejected
});
In addition to Google Closure's implementation of Promise,
the ProgressPromise
class is also provided for tracking the progress of an
async process.
import {ProgressPromise} from 'metal-promise';
new ProgressPromise(function(resolve, reject, progress) {
progress(0.3);
progress(0.5);
progress(0.7);
progress(0.9);
setTimeout(function() {
resolve();
}, 100);
})
.progress(progress => {
// Will invoke 4 times, 0.3, 0.5, 0.7, 0.9
})
.then(function() {
// Invoked after all progress calls
});
Note that the progress
function must be invoked with a number
between 0
and 1
.
progress(2); // TypeError: The progress percentage should be a number between 0 and 1
It also cannot be invoked with a smaller number than the previous call.
progress(0.3);
progress(0.1); // Error: The progress percentage can't be lower than the previous percentage
To see more advanced documentation, please visit Google Closure Library's documentation;
Install a recent release of NodeJS if you don't have it yet.
Install local dependencies:
npm install
npm test
Check out the contributing guidelines for more information.
FAQs
Promises polyfill from Google's Closure Library in ES6
The npm package metal-promise receives a total of 1,476 weekly downloads. As such, metal-promise popularity was classified as popular.
We found that metal-promise demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 11 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.